home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 2
/
Merciful - Disc 2.iso
/
software
/
d
/
devioustools25.dms
/
devioustools25.adf
/
utils
/
002.lzx
/
amiconnectsmall
/
Create_AdvancedLogin
< prev
next >
Wrap
Text File
|
1978-01-01
|
1KB
|
47 lines
;Installer Script To Create amitcp:db/aclogonscript
;$VER: Dialscript Maker V1 (19/11/95)
;
(set sendcmd "#")
(textfile
(dest "t:dialtest2")
)
(until (= sendcmd "\0")
(
(set rcvcmd
(askstring
(prompt "Enter Prompt\n\n(leave blank to exit dialscript editor")
(help "Enter the text which your internet provider has sent for you to reply to, e.g. login:")
)
)
(set sendcmd
(askstring
(prompt "Enter Response To Prompt \n\n(leave blank to exit dialscript editor")
(help "Enter the text which you send after receiving the prompt mentioned in previous data entry box")
)
)
(debug rcvcmd sendcmd)
(if (and (= rcvcmd "\0") (= sendcmd "\0"))
(set fred "fred")
(
(textfile
(dest "t:dialtest")
(append rcvcmd)
(append "\n")
(append sendcmd)
(append "\n")
)
(run "type t:dialtest >> t:dialtest2")
)
)
)
)